type runtime.bitvector

21 uses

	runtime (current package)
		heapdump.go#L213: func dumpobj(obj unsafe.Pointer, size uintptr, bv bitvector) {
		heapdump.go#L240: 	args   bitvector // if args.n >= 0, pointer map of args region
		heapdump.go#L246: func dumpbv(cbv *bitvector, offset uintptr) {
		heapdump.go#L274: 	var bv bitvector
		heapdump.go#L722: func dumpfields(bv bitvector) {
		heapdump.go#L727: func makeheapobjbv(p uintptr, size uintptr) bitvector {
		heapdump.go#L756: 	return bitvector{int32(i), &tmpbuf[0]}
		mbitmap.go#L1568: func progToPointerMask(prog *byte, size uintptr) bitvector {
		mbitmap.go#L1576: 	return bitvector{int32(n), &x[0]}
		runtime2.go#L991: 	argmap   *bitvector // force use of this argmap
		stack.go#L583: type bitvector struct {
		stack.go#L592: func (bv *bitvector) ptrbit(i uintptr) uint8 {
		stack.go#L599: func adjustpointers(scanp unsafe.Pointer, bv *bitvector, adjinfo *adjustinfo, f funcInfo) {
		stack.go#L1250: func getStackMap(frame *stkframe, cache *pcvalueCache, debug bool) (locals, args bitvector, objs []stackObjectRecord) {
		symtab.go#L450: 	gcdatamask, gcbssmask bitvector
		symtab.go#L532: 		if md.gcdatamask == (bitvector{}) {
		symtab.go#L1161: func stackmapdata(stkmap *stackmap, n int32) bitvector {
		symtab.go#L1168: 	return bitvector{stkmap.nbit, addb(&stkmap.bytedata[0], uintptr(n*((stkmap.nbit+7)>>3)))}
		traceback.go#L661: 	stack  *bitvector // ptrmap for both args and results
		traceback.go#L670: func getArgInfoFast(f funcInfo, needArgMap bool) (arglen uintptr, argmap *bitvector, ok bool) {
		traceback.go#L682: func getArgInfo(frame *stkframe, f funcInfo, needArgMap bool, ctxt *funcval) (arglen uintptr, argmap *bitvector) {